home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / bootwhat.zip / ASM2BIN.BAT next >
DOS Batch File  |  1990-12-17  |  276b  |  15 lines

  1. @echo off
  2. REM This batch file builds file.bin from file.asm
  3. if not arg%1==arg%1 goto arg
  4. echo supply base name of file.asm, i.e. file
  5. goto exit
  6. :arg
  7. echo on
  8. masm %1,,;
  9. link boot-hdp,;
  10. @echo Ignore the 'no stack...' warning
  11. del %1.obj
  12. exe2bin %1
  13. del %1.exe
  14. :exit
  15.